| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import { useStaticQuery, graphql } from 'gatsby'; |
||
| 3 | export const getHomepageMetadataProvider = () => ( |
||
| 4 | useStaticQuery(graphql` |
||
| 5 | { |
||
| 6 | intro: homepageYaml(slug: {eq: "intro" }) { |
||
| 7 | title |
||
| 8 | description |
||
| 9 | biography |
||
| 10 | } |
||
| 11 | expertise: homepageYaml(slug: {eq: "expertise" }) { |
||
| 12 | title |
||
| 13 | description |
||
| 14 | items { |
||
| 15 | title |
||
| 16 | description |
||
| 17 | } |
||
| 18 | } |
||
| 19 | } |
||
| 20 | `) |
||
| 21 | ); |
||
| 22 |